home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000263_news@columbia.edu _Sun Feb 16 18:08:03 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA13037
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 16 Feb 1997 18:08:02 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA05871
  7.     for kermit.misc@watsun; Sun, 16 Feb 1997 18:08:02 -0500 (EST)
  8. Path: news.columbia.edu!panix!newsgate.nytimes.com!newsfeeds.sol.net!news.maxwell.syr.edu!insync!uunet!in1.uu.net!206.63.63.70!nwnews.wa.com!brokaw.wa.com!not-for-mail
  9. From: Ken Pizzini <ken@halcyon.com>
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Linux compile error
  12. Date: 16 Feb 1997 22:38:35 GMT
  13. Organization: Northwest Nexus Inc.
  14. Lines: 16
  15. Message-ID: <5e829b$puf$1@brokaw.wa.com>
  16. References: <slrn5gbq1d.1pa.rpotter@rpotter.cgocable.net>
  17. NNTP-Posting-Host: chinook.halcyon.com
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6602
  19.  
  20. In article <slrn5gbq1d.1pa.rpotter@rpotter.cgocable.net>,
  21. Richard Potter <rpotter@cgocable.net> wrote:
  22. >gcc -o wart ckwart.o -lcurses -ltermcap
  23. >ld: cannot open -lcurses: No such file or directory
  24.  
  25. Check to see if you have the curses library installed:
  26.   ls -l /usr/lib/*curse* /usr/local/lib/*curse* /lib/*curse*
  27.  
  28. If you get three "No such file or directory" errors then
  29. your problem is that you need to install a curses library.
  30. If you do get a hit, but it is for a "libncurses.(mumble)"
  31. library, fix your makefile to link with -lncurses instead
  32. of -lcurses (or add some symbolic links).  Otherwise, I'm
  33. stumped.
  34.  
  35.         --Ken Pizzini